home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / communication / internet / amitcp3.0b / src.lha / src / amitcp / api / apicalls.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-08  |  810 b   |  37 lines

  1. /*
  2.  * $Id: apicalls.h,v 1.4 1994/03/22 07:33:28 jraja Exp $
  3.  *
  4.  * Created: Tue May  4 11:01:40 1993 too
  5.  * Last modified: Wed Jun  2 17:12:03 1993 jraja
  6.  *
  7.  * HISTORY
  8.  * $Log: apicalls.h,v $
  9.  * Revision 1.4  1994/03/22  07:33:28  jraja
  10.  * Moved f_void definition from apicalls_sasc.h to apicalls.h.
  11.  *
  12.  * Revision 1.3  1993/06/02  14:13:22  jraja
  13.  * Updated.
  14.  *
  15.  * Revision 1.2  1993/06/01  11:41:50  jraja
  16.  * Moved apicalls.*\.h from sys to api.
  17.  *
  18.  * Revision 1.1  1993/05/04  14:09:34  too
  19.  * Initial revision
  20.  *
  21.  */
  22.  
  23. #ifndef API_APICALLS_H
  24. #define API_APICALLS_H
  25.  
  26. typedef VOID (* REGARGFUN f_void)(...);
  27.  
  28. #if __SASC
  29. #include <api/apicalls_sasc.h>
  30. #elif __GNUC__
  31. #include <api/apicalls_gnuc.h>
  32. #else
  33. #error AmiTCP/IP internal API calls are not defined for your compiler!
  34. #endif
  35.  
  36. #endif /* API_APICALLS_H */
  37.